Calling this method will create and return an instance of ZipFile object that you can use to work with ZIP archives.
Function(FileName)
Dest = SaveDialog("ISYS_Extracted_Documents.zip", "Zip Files (*.zip)|*.zip") If Dest <> "" Then Set Zip = NewZipFile(Dest) Set Documents = App.ActiveTab.FetchPrompt Do While Not Documents.EOF Zip.AddFile Documents.Item.FileOnDisk, SafeFilename(Documents.Item.Filename) Documents.MoveNext Loop Zip.Save End If